/* Header */
header {
    background-color: var(--main-green);
    color: var(--white);
    padding: 60px 20px;
    text-align: center;
}

header h1 {
    font-family: 'Lora', serif;
    font-size: 48px;
    letter-spacing: 2px;
    margin-bottom: 10px;
}

.back-link {
    display: inline-block;
    margin-top: 20px;
    color: var(--cream);
    text-decoration: none;
    font-weight: 600;
}

.back-link:hover {
    text-decoration: underline;
}

/* Shows Container */
.shows-container {
    max-width: 1200px;
    margin: 60px auto;
    padding: 0 30px;
}

/* Show Card */
.show-card {
    background: var(--white);
    border: 3px solid var(--main-green);
    border-radius: 8px;
    margin-bottom: 60px;
    overflow: hidden;
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 0;
}

.show-poster {
    width: 250px;
    height: 350px;
    background-color: var(--cream);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 5px rgba(0, 0, 0, 0.2);
    margin: 60px 40px 40px;
}

.show-poster img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.show-content {
    display: flex;
    flex-direction: column;
}

.show-video {
    width: 100%;
    max-width: 700px;
    height: 400px;
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    margin: 40px;
    transition: transform 0.3s ease;
}

.show-video iframe {
    width: 100%;
    height: 100%;
}

.show-info {
    padding: 30px 30px 30px 40px;
    grid-column: 1 / -1;
}

.show-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: var(--main-green);
    margin-bottom: 10px;
}

.show-year {
    font-size: 14px;
    color: #666;
    margin-bottom: 20px;
}

.show-details {
    margin-bottom: 15px;
    padding-right: 0;
}

.show-details strong {
    color: var(--main-green);
    display: block;
    margin-bottom: 5px;
    font-size: 14px;
}

.show-details p {
    font-size: 14px;
    color: var(--dark-green);
    line-height: 1.6;
    margin-right: 0;
    padding-right: 0;
}

.show-synopsis {
    margin-top: 20px;
    padding-right: 0;
}

.show-synopsis strong {
    color: var(--main-green);
    display: block;
    margin-bottom: 10px;
    font-size: 14px;
}

.show-synopsis p {
    font-size: 14px;
    line-height: 1.8;
    color: #555;
    margin-right: 0;
    padding-right: 0;
    text-align: justify;
}

.go-to-top {
    display: block;
    text-align: center;
    color: var(--main-green);
    text-decoration: none;
    font-weight: 600;
    margin-top: 40px;
    font-size: 16px;
}

.go-to-top:hover {
    color: var(--dark-green);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .show-card {
        grid-template-columns: 300px 1fr;
    }
}

@media (max-width: 768px) {
    .show-card {
        grid-template-columns: 1fr;
    }

    .show-poster {
        height: 400px;
        border-right: none;
        border-bottom: 3px solid var(--main-green);
    }

    .show-video {
        height: 250px;
    }
}
